Notes/Domino Fix List
SPR # KUMA5VT4J6Fixed in 6.0.5 releaseTemplate fix: pubnames.ntf, pernames.ntf



Product Area: Client; Template Technical Area: Template Platform: Cross Platform

Lotus Customer Support APAR: LO01376

SPR# KUMA5VT4J6 - In the "Archive Criteria Settings" form, on the Basics tab, for the Template field, code was added to the onChange event to check for an ($Inbox) view as well as the already existing check for the word "mail" in the filename of the template.

Technote Number: 1155760

Problem:
This issue was reported to Quality Engineering as SPR# and has been addressed
in Notes 6.5.3.

Excerpt from the Fix List for Lotus Notes and Lotus Domino Release 6.5.3
Maintenance Release (MR):

Template
SPR# KUMA5VT4J6 - In the "Archive Criteria Settings" form, on the Basics tab,
for the Template field, code was added to the onChange event to check for an
($Inbox) view as well as the already existing check for the word "mail" in the
filename of the template.

Workaround:
You can modify the PolicyArchiveCriteria form in the Domino Directory (or its
template) so that the logic correctly considers the case when the template is
set to "Domino Web Access (6)".
1. In the field Template, modify the On Change event.

Modify line 48 from:

If Instr(Lcase(uDb.FileName),"mail") = 0 Then

To:

If (Instr(Lcase(uDb.FileName),"mail")=0) And
(Lcase(UDb.FileName)<>"inotes6.ntf") Then

2. In the field ArcFldr, modify the Entering event.

Modify line 58 from:

If Instr(Lcase(uDb.FileName),"mail") = 0 Then

To:

If (Instr(Lcase(uDb.FileName),"mail")=0) And
(Lcase(UDb.FileName)<>"inotes6.ntf") Then
More >



Last Modified on 12/08/2013

Go back